home *** CD-ROM | disk | FTP | other *** search
/ Aminet 8 / Aminet 8 (1995)(GTI - Schatztruhe)[!][Oct 1995].iso / Aminet / dev / gcc / gcc270_src.lha / gcc-2.7.0-amiga / config / m68k / x-amigados < prev    next >
Text File  |  1995-08-24  |  2KB  |  53 lines

  1. # Note: It doesn't do any good to try to define prefix or local_prefix
  2. # in the host overrides because configure will just change them back.
  3. # You either have to give an appropriate option to configure or live with
  4. # an Amiga specific patch to configure.  See the note in configure.  -fnf
  5.  
  6. # Building under amigados almost certainly requires an already working gcc.
  7. # Use gccv, which is a gcc compiled with AMIGADOS_FORK_GCC so "-pipe" will
  8. # work and get exercised.  To bootstrap with the regular gcc just do
  9. # "make CC=gcc".  To bootstrap without "-pipe" do "make PIPE=".
  10.  
  11. CC = gccv $(PIPE)
  12.  
  13. # Disable -pipe for now since I had problems bootstrapping gcc 2.5.5 with
  14. # it. (fnf)
  15. #PIPE = -pipe
  16.  
  17. # Allow the user to override the default host optimization with gcc, or if the
  18. # host compiler is not gcc and doesn't understand -O<N>.
  19.  
  20. X_OPTIMIZE = -O2
  21.  
  22. # The standard additional host flags for the compiler.
  23.  
  24. X_CFLAGS = $(X_OPTIMIZE)
  25.  
  26. # Man pages get a wierd suffix...
  27.  
  28. manext = .0
  29.  
  30. # We really shouldn't specify CFLAGS from here, but there's no other way
  31. # to get rid of the `-g' indoctrinated by Makefile.in.  Note this becomes
  32. # part of both the host compilation CFLAGS and the target compilation
  33. # CFLAGS.
  34.  
  35. CFLAGS =
  36.  
  37. # Ranlib does exist, but may not be in a path where the default RANLIB_TEST
  38. # expects it, so just force it to true.
  39.  
  40. RANLIB_TEST = true
  41.  
  42. # Until we can make sure no cross-device hardlinks are tried, and until
  43. # symlinks can be made in canonical amigados format (dev:path/file), just
  44. # use copy with timestamp preservation.  This only wastes some disk space
  45. # and means you have to reconfigure if you change any of the files that
  46. # would normally be linked to.  -fnf
  47.  
  48. HARDLINK = cp -p
  49. SYMLINK = cp -p
  50.  
  51. # Build supplimentary Amiga host support file.
  52. amigasup.o: amigasup.c
  53.